home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr54 / bison118.zip / MERGEDIR.AWK < prev    next >
Text File  |  1993-06-01  |  278b  |  6 lines

  1. # This is an awk program to insert the value of the variable `dir'
  2. # into the file names in the #line commands in bison.simple.
  3. # Out of laziness, we assume the file name in the text is bison.simple.
  4. $1 == "#line" { print $1, $2, "\"" dir "/bison.simple\"" }
  5. $1 != "#line"
  6.